home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 501-525 / disk_512 / csh / csh515s.lzh / makefile < prev    next >
Makefile  |  1991-06-02  |  607b  |  21 lines

  1. ######################################################################
  2. # Makefile to build Shell 5.10  under Aztec C 5.0d
  3. # make sure you use 5.0d or above, as setenv() has changed
  4. # NOTE: Our chars are UNSIGNED by default, and the executable's called zsh
  5.  
  6. OBJ=run.o main.o comm1.o comm2.o comm3.o execom.o set.o sub.o globals.o rawcon.o
  7. INC=shell.syms
  8.  
  9. FLAGS    = -wurp -ssr
  10. DEBUG    = -bs
  11. PRECOM    = -hiShell.syms
  12.  
  13. zsh:  makefile shell.syms $(OBJ)
  14.     ln +q -m -g -o zsh $(OBJ) -larpl -lc
  15.  
  16. shell.syms : shell.h proto.h
  17.     cc -pp -hoShell.syms shell.h -DAZTEC_C
  18.  
  19. $(OBJ): $(INC)
  20.     cc -pp $(DEBUG) $(FLAGS) $(PRECOM) $*.c
  21.